home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Utilities / Workspace / Bypass / Bypass_main.m < prev    next >
Text File  |  1995-06-12  |  872b  |  48 lines

  1.  
  2. /*
  3.     Copyright 1993  Jeremy Slade.
  4.  
  5.     You are free to use all or any parts of the Bypass project
  6.     however you wish, just give credit where credit is due.
  7.     The author (Jeremy Slade) shall not be held responsible
  8.     for any damages that result out of use or misuse of any
  9.     part of this project.
  10.  
  11. */
  12.  
  13. /*
  14.     Project: Bypass
  15.     
  16.     File: Bypass_main.m
  17.     
  18.     Description:
  19.  
  20.     This is the module containing main(). main()'s duties for this
  21.     program are:
  22.         1. Allocate and Init the BypassController
  23.         2. Tell the BypassController to run.
  24.         
  25.     Original Author: Jeremy Slade
  26.     
  27.     Revision History:
  28.         Created
  29.             JGS Sat Apr 10 15:04:13 MDT 1993
  30.  
  31. */
  32.  
  33. #import <stdlib.h>
  34. #import "BypassController.h"
  35.  
  36.  
  37. void main ( int argc, char *argv[] )
  38. {
  39.     id controller;
  40.     
  41.     // Create the BypassController
  42.     controller = [[BypassController alloc] init];
  43.     
  44.     // Tell the controller to run
  45.     exit ( [controller run] );
  46. }
  47.  
  48.